4fe9aeeb9daf9b2861ab703dc8c6563236fa927e,core/src/main/java/com/google/common/truth/PrimitiveIntArraySubject.java,PrimitiveIntArraySubject,asList,#,84

Before Change


  }

  public IterableSubject asList() {
    return new IterableSubject(failureStrategy, listRepresentation());
  }
}

After Change


  }

  public IterableSubject asList() {
    return internalCustomName() != null
        ? check().that(listRepresentation()).named(internalCustomName())
        : check().that(listRepresentation());
  }
}